github.com/klauspost/compress/flate.dictDecoder.wrPos (field)
24 uses
github.com/klauspost/compress/flate (current package)
dict_decoder.go#L31: wrPos int // Current output position in buffer
dict_decoder.go#L51: dd.wrPos = copy(dd.hist, dict)
dict_decoder.go#L52: if dd.wrPos == len(dd.hist) {
dict_decoder.go#L53: dd.wrPos = 0
dict_decoder.go#L56: dd.rdPos = dd.wrPos
dict_decoder.go#L64: return dd.wrPos
dict_decoder.go#L69: return dd.wrPos - dd.rdPos
dict_decoder.go#L74: return len(dd.hist) - dd.wrPos
dict_decoder.go#L81: return dd.hist[dd.wrPos:]
dict_decoder.go#L88: dd.wrPos += cnt
dict_decoder.go#L95: dd.hist[dd.wrPos] = c
dict_decoder.go#L96: dd.wrPos++
dict_decoder.go#L105: dstBase := dd.wrPos
dict_decoder.go#L141: dd.wrPos = dstPos
dict_decoder.go#L152: dstPos := dd.wrPos
dict_decoder.go#L167: dd.wrPos = dstPos
dict_decoder.go#L175: dst = append(dst, dd.hist[dd.wrPos:]...)
dict_decoder.go#L176: return append(dst, dd.hist[:dd.wrPos]...)
dict_decoder.go#L178: return append(dst, dd.hist[:dd.wrPos]...)
dict_decoder.go#L185: toRead := dd.hist[dd.rdPos:dd.wrPos]
dict_decoder.go#L187: dd.rdPos = dd.wrPos
dict_decoder.go#L188: if dd.wrPos == len(dd.hist) {
dict_decoder.go#L189: dd.wrPos, dd.rdPos = 0, 0
dict_decoder.go#L198: return dd.flushed + int64(dd.wrPos-dd.rdPos)
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |